home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Developer Toolbox 6.1
/
SGI Developer Toolbox 6.1 - Disc 4.iso
/
src
/
demos
/
GL
/
newton
/
Makefile
< prev
next >
Wrap
Makefile
|
1994-08-01
|
619b
|
30 lines
include $(ROOT)/usr/include/make/commondefs
#
# Makefile for newton demo
#
TARGETS = newton
CVERSION=-xansi
LLDLIBS = -lgl -lm -lmpc
LCOPTS = -float
# Gotta get rid of dependency on what machine it is being made on
# -- should do it right, and not just assume most powerful machine,
# but that involves changing a lot of code.
LCDEFS = -DCLOVER2
PROTOTYPES=
CFILES = main.c play.c models.c physics.c draw.c slave.c slider.c cwd.c
HFILES = config.h newton.h windows.h slider.h
default all: $(TARGETS)
install:
$(MAKE) $(TARGETS)
include $(COMMONRULES)
${TARGETS}: ${OBJECTS}
${CCF} -o $@ ${OBJECTS} ${LDFLAGS}